home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / usb.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  2KB  |  54 lines

  1. /* Copyright 2003 Red Hat, Inc.
  2.  *
  3.  * This software may be freely redistributed under the terms of the GNU
  4.  * public license.
  5.  *
  6.  * You should have received a copy of the GNU General Public License
  7.  * along with this program; if not, write to the Free Software
  8.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  9.  *
  10.  */
  11.  
  12. #ifndef _KUDZU_USB_H
  13. #define _KUDZU_USB_H
  14.  
  15. #include "device.h"
  16. #include "kudzu.h"
  17.  
  18. struct usbDevice {
  19.         /* common fields */
  20.  
  21.     struct device *next;    /* next device in list */
  22.     int index;
  23.     enum deviceClass type;    /* type */
  24.     enum deviceBus bus;        /* bus it's attached to */
  25.     char * device;        /* device file associated with it */
  26.     char * driver;        /* driver to load, if any */
  27.     char * desc;        /* a description */
  28.     int detached;
  29.     void * classprivate;
  30. /* usb-specific fields */
  31.     struct usbDevice *(*newDevice) (struct usbDevice *dev);
  32.     void (*freeDevice) (struct usbDevice *dev);
  33.     void (*writeDevice) (FILE *file, struct usbDevice *dev);
  34.     int (*compareDevice) (struct usbDevice *dev1, struct usbDevice *dev2);
  35.     int usbclass;
  36.     int usbsubclass;
  37.     int usbprotocol;
  38.     int usbbus;
  39.     int usblevel;
  40.     int usbport;
  41.     int usbdev;
  42.     int vendorId;
  43.     int deviceId;
  44.     char *usbmfr;
  45.     char *usbprod;
  46. };
  47.  
  48. struct usbDevice *usbNewDevice(struct usbDevice *dev);
  49. struct device *usbProbe(enum deviceClass probeClass, int probeFlags,
  50.                         struct device *devlist);
  51. int usbReadDrivers(char *filename);
  52. void usbFreeDrivers(void);
  53. #endif
  54.